2b0d89bdc049c16f82dd0ed9a77fac8b4f7fd455,warc-hadoop-indexer/src/main/java/uk/bl/wa/hadoop/mapreduce/cdx/ArchiveCDXGenerator.java,ArchiveCDXGenerator,createJob,#String[]#,132
Before Change
job.setMapperClass(TinyCDXServerMapper.class);
} else {
// Default to the pass-through mapper:
job.setMapperClass(Mapper.class);
// Set up the split:
if (this.splitFile != null) {
log.info("Setting splitFile to " + this.splitFile);
After Change
conf.set("mapred.reduce.tasks.speculative.execution", "false");
// General config:
job.setMapperClass(Mapper.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(Text.class);
job.setOutputKeyClass(Text.class);